home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / pulseaudio.preinst < prev    next >
Encoding:
Text File  |  2009-07-14  |  352 b   |  22 lines

  1. #!/bin/sh
  2.  
  3. case "$1" in
  4.   install|upgrade)
  5.     if dpkg --compare-versions "$2" lt "0.9.14-0ubuntu3"; then
  6.       if [ -f /etc/xdg/autostart/pulseaudio.desktop ]; then
  7.         rm /etc/xdg/autostart/pulseaudio.desktop
  8.       fi
  9.     fi
  10.   ;;
  11.   abort-upgrade)
  12.   ;;
  13.   *)
  14.     echo "preinst called with unknown argument \`$1'" >&2
  15.     exit 1
  16.   ;;
  17. esac
  18.  
  19.  
  20.  
  21. exit 0
  22.